Socket
Socket
Sign inDemoInstall

mini-signals

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mini-signals

signals, in JavaScript, fast


Version published
Maintainers
1
Created
Source

mini-signals

signals, in JavaScript, fast

NPM Build Status Codacy Badge License

Description

Custom event/messaging system for JavaScript inspired by js-signals originally based on EventEmitter3 code base.

There are several advantages to signals over event-emitters (see Comparison between different Observer Pattern implementations). However, the current implementation of js-signals is (arguably) slow compared to other implementations (see EventsSpeedTests). mini-signals is a fast, minimal emitter, with an API similar to js-signals.

Install

npm:

npm install mini-signals

jspm:

jspm install mini-signals=npm:mini-signals

bower:

bower install mini-signals

Example Usage

When not using a module loader the mini-signals constructor (MiniSignal) is global.

var MiniSignal = require('mini-signals');
var mySignal = new MiniSignal();

var binding = mySignal.add(onSignal);   //add listener
mySignal.dispatch('foo', 'bar');        //dispatch signal passing custom parameters
binding.detach();                       //remove a single listener

function onSignal(foo, bar) {
  assert(foo === 'foo');
  assert(bar === 'bar');
}

Another Example

var myObject = {
  foo: 'bar',
  updated: new MiniSignal()
}

myObject.updated.add(onUpdated,myObject);   //add listener with context

myObject.foo = 'baz';
myObject.updated.dispatch();                 //dispatch signal

function onUpdated() {
  assert(this === myObject);
  assert(this.foo === 'baz');
}

API

See API.md

License

Copyright (c) 2015 Jayson Harshbarger

MIT License

Keywords

FAQs

Package last updated on 11 Sep 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc